1 /* JJT: 0.2.2 */
2
3 package mobisnap.mobile_trx;
4
5 /***
6 * Implements short-circuit OR
7 */
8 public class ASTTypeDeclaration extends mobisnap.mobile_trx.SimpleNode {
9 public ASTBasicDataTypeDeclaration bdtd;
10
11 public ASTTypeDeclaration(int id) {
12 super(id);
13 }
14
15 public ASTTypeDeclaration( MobisnapSQL p, int i) {
16 super( p, i);
17 id = i;
18 }
19
20 /*** Accept the visitor. **/
21 public Object jjtAccept(MobisnapSQLVisitor visitor, Object data) {
22 return visitor.visit(this, data);
23 }
24
25 /***
26 * Returns a vriable that is an instance of the defined type
27 */
28 public MSQLTVariable getInstance( boolean constant, boolean notnull)
29 throws Exception {
30 return bdtd.getInstance( constant, notnull);
31 }
32
33 }
This page was automatically generated by Maven